home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 December / 2004-12 CHIP.iso / Internet / The Bat! Professional 3.01 / thebat_professional.msi / Data1.cab / thebat.exe / 0 / RCDATA / TFILECONFLICTDLG / TFILECONFLICTDLG.txt
Text File  |  2004-10-12  |  2KB  |  101 lines

  1. object FileConflictDlg: TFileConflictDlg
  2.   Left = 202
  3.   Top = 108
  4.   Width = 413
  5.   Height = 334
  6.   BorderIcons = [biSystemMenu]
  7.   Caption = 'File Name Conflicts'
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = True
  15.   Position = poScreenCenter
  16.   OnClose = FormClose
  17.   PixelsPerInch = 96
  18.   TextHeight = 13
  19.   object Panel1: TPanel
  20.     Left = 0
  21.     Top = 0
  22.     Width = 405
  23.     Height = 73
  24.     Align = alTop
  25.     BevelInner = bvLowered
  26.     BevelOuter = bvNone
  27.     BorderWidth = 8
  28.     TabOrder = 0
  29.     object lReason: TLabel
  30.       Left = 9
  31.       Top = 9
  32.       Width = 387
  33.       Height = 55
  34.       Align = alClient
  35.       AutoSize = False
  36.       Caption = 
  37.         'There were files with the same names detected on the destination' +
  38.         ' path. Please select the files you wish to leave or overwrite by' +
  39.         ' selecting them and pressing the Space Bar'
  40.       WordWrap = True
  41.     end
  42.   end
  43.   object Panel2: TPanel
  44.     Left = 0
  45.     Top = 266
  46.     Width = 405
  47.     Height = 41
  48.     Align = alBottom
  49.     BevelOuter = bvNone
  50.     TabOrder = 1
  51.     object bOK: TButton
  52.       Left = 232
  53.       Top = 8
  54.       Width = 75
  55.       Height = 25
  56.       Caption = '&OK'
  57.       Default = True
  58.       ModalResult = 1
  59.       TabOrder = 0
  60.     end
  61.     object bCancel: TButton
  62.       Left = 320
  63.       Top = 8
  64.       Width = 75
  65.       Height = 25
  66.       Cancel = True
  67.       Caption = 'Cancel'
  68.       ModalResult = 2
  69.       TabOrder = 1
  70.     end
  71.   end
  72.   object lFiles: TListView
  73.     Left = 0
  74.     Top = 73
  75.     Width = 405
  76.     Height = 193
  77.     Align = alClient
  78.     Columns = <
  79.       item
  80.         Caption = 'Original File'
  81.         Width = 150
  82.       end
  83.       item
  84.         Caption = 'Destination file'
  85.         Width = 150
  86.       end
  87.       item
  88.         Caption = 'Overwrite'
  89.         Width = 100
  90.       end>
  91.     MultiSelect = True
  92.     ReadOnly = True
  93.     RowSelect = True
  94.     SortType = stText
  95.     TabOrder = 2
  96.     ViewStyle = vsReport
  97.     OnDblClick = lFilesDblClick
  98.     OnKeyPress = lFilesKeyPress
  99.   end
  100. end
  101.